home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 February / SGI IRIX 6.5 Complementary Applications 2004 February.iso / dist / cde.idb / usr / dt / share / include / Xm / SashP.h.z / SashP.h
Encoding:
C/C++ Source or Header  |  2003-11-18  |  3.5 KB  |  130 lines

  1. /*
  2.  * SashP.h
  3.  *
  4.  * Copyright 2000, Silicon Graphics, Inc.
  5.  * ALL RIGHTS RESERVED
  6.  * 
  7.  * UNPUBLISHED -- Rights reserved under the copyright laws of the United
  8.  * States.   Use of a copyright notice is precautionary only and does not
  9.  * imply publication or disclosure.
  10.  *
  11.  * U.S. GOVERNMENT RESTRICTED RIGHTS LEGEND:
  12.  * Use, duplication or disclosure by the Government is subject to restrictions
  13.  * as set forth in FAR 52.227.19(c)(2) or subparagraph (c)(1)(ii) of the Rights
  14.  * in Technical Data and Computer Software clause at DFARS 252.227-7013 and/or
  15.  * in similar or successor clauses in the FAR, or the DOD or NASA FAR
  16.  * Supplement.  Contractor/manufacturer is Silicon Graphics, Inc.,
  17.  * 2011 N. Shoreline Blvd. Mountain View, CA 94039-7311.
  18.  *
  19.  * THE CONTENT OF THIS WORK CONTAINS CONFIDENTIAL AND PROPRIETARY
  20.  * INFORMATION OF SILICON GRAPHICS, INC. ANY DUPLICATION, MODIFICATION,
  21.  * DISTRIBUTION, OR DISCLOSURE IN ANY FORM, IN WHOLE, OR IN PART, IS STRICTLY
  22.  * PROHIBITED WITHOUT THE PRIOR EXPRESS WRITTEN PERMISSION OF SILICON
  23.  * GRAPHICS, INC.
  24.  */
  25. /* 
  26.  * @OSF_COPYRIGHT@
  27.  * (c) Copyright 1990, 1991, 1992, 1993, 1994 OPEN SOFTWARE FOUNDATION, INC.
  28.  * ALL RIGHTS RESERVED
  29.  *  
  30. */ 
  31. /*
  32.  * HISTORY
  33.  * Motif Release 1.2.5
  34. */
  35. /*   $XConsortium: SashP.h /main/cde1_maint/2 1995/08/18 19:19:27 drk $ */
  36. /*
  37. *  (c) Copyright 1989, DIGITAL EQUIPMENT CORPORATION, MAYNARD, MASS. */
  38. /*
  39. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  40. /*
  41. *  (c) Copyright 1988 MASSACHUSETTS INSTITUTE OF TECHNOLOGY  */
  42. /*
  43.  *  SashP.h - Private definitions for Sash widget (Used by VPane Widget)
  44.  *
  45.  */
  46.  
  47. #ifndef _XmSashP_h
  48. #define _XmSashP_h
  49.  
  50. #include <Xm/PrimitiveP.h>
  51.  
  52. #ifdef __cplusplus
  53. extern "C" {
  54. #endif
  55.  
  56. /*****************************************************************************
  57.  *
  58.  * Sash Widget Private Data
  59.  *
  60.  *****************************************************************************/
  61.  
  62. /* New fields for the Sash widget class record */
  63. typedef struct {
  64.    XtPointer extension;   /* Pointer to extension record */
  65. } XmSashClassPart;
  66.  
  67. /* Full Class record declaration */
  68. typedef struct _XmSashClassRec {
  69.     CoreClassPart         core_class;
  70.     XmPrimitiveClassPart  primitive_class;
  71.     XmSashClassPart    sash_class;
  72. } XmSashClassRec;
  73.  
  74. typedef struct _XmSashClassRec *XmSashWidgetClass;
  75.  
  76. externalref XmSashClassRec xmSashClassRec;
  77.  
  78. /* New fields for the Sash widget record */
  79. typedef struct {
  80.   XtCallbackList sash_action;
  81.   Boolean has_focus;
  82. } XmSashPart;
  83.  
  84. /*****************************************************************************
  85.  *
  86.  * Full instance record declaration
  87.  *
  88.  ****************************************************************************/
  89.  
  90. typedef struct _XmSashRec {
  91.    CorePart         core;
  92.    XmPrimitivePart  primitive;
  93.    XmSashPart       sash;
  94. } XmSashRec;
  95.  
  96. typedef struct _XmSashRec      *XmSashWidget;
  97.  
  98. typedef struct {
  99.   XEvent *event;        /* the event causing the SashAction */
  100.   String *params;        /* the TranslationTable params */
  101.   Cardinal num_params;        /* count of params */
  102. } SashCallDataRec, *SashCallData;
  103.  
  104. /* Class Record Constant */
  105.  
  106. externalref WidgetClass xmSashWidgetClass;
  107.  
  108. #ifndef XmIsSash
  109. #define XmIsSash(w)    XtIsSubclass(w, xmSashWidgetClass)
  110. #endif /* XmIsSash */
  111.  
  112.  
  113. /********    Private Function Declarations    ********/
  114. #ifdef _NO_PROTO
  115.  
  116.  
  117. #else
  118.  
  119.  
  120. #endif /* _NO_PROTO */
  121. /********    End Private Function Declarations    ********/
  122.  
  123.  
  124. #ifdef __cplusplus
  125. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  126. #endif
  127.  
  128. #endif /* _XmSashP_h */
  129. /* DON'T ADD ANYTHING AFTER THIS #endif */
  130.